home *** CD-ROM | disk | FTP | other *** search
Text File | 1996-03-27 | 599 b | 24 lines | [TEXT/CWIE] |
- // =================================================================================
- // CConsumerThread.h ©1996 Metrowerks Inc. All rights reserved.
- // =================================================================================
-
- #pragma once
-
- #include <LThread.h>
-
- class LSharedQueue;
- class LThermometerPane;
-
- class CConsumerThread : public LThread {
- public:
- CConsumerThread( LSharedQueue *inQueue,
- LThermometerPane *inProgressPane );
- virtual ~CConsumerThread();
-
- protected:
- LSharedQueue * mQueue;
- LThermometerPane * mProgressPane;
-
- virtual void * Run( void );
- };
-